home *** CD-ROM | disk | FTP | other *** search
- /*
- * AppIconView.m
- * -- Henry Krempel, Based on Jayson Adams original 2.0 (Acceptor)
- * This object can be used to replace the content view of the application's
- * Icon. This version is passed a subclass of View (in some other window)
- * which it copies whenever it is displayed.
- * hjk - Mon Feb 8 1993
- */
- #import <appkit/appkit.h>
-
- @interface AppIconView:View
- {
- id sourceWindow;
- NXRect sourceRect;
- }
-
- /* instance methods */
- - initFrame:(const NXRect *)frameRect sourceView:obj;
-
- @end
-